body {
    background-color: #fff;
}

main {
    background-color: #fff;
    margin-left: 10%;
    margin-right: 10%;
    padding: 10px 20px 30px 20px; 
}

h1 {
    font-family: Roboto-Black;
    color: white;
    font-size: 80px;
}

h2 {
    font-family: Roboto-Bold;
    font-size: 30px;
    color: navy;
}



/*
**  HERO SECTION
*/

.hero-section {
    width: 100%;
    height: 600px;
    padding-top:10%;
    padding-left: 15%;
    background-image: url("/front-matter/home-page/hero-image.png");
}




/*
**  DEPARTMENTS SECTION
*/

.department-section {
    width: 100%;
    padding-top:10%;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
}

.department-card-block {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-between;
}

.department-section h3 {
    font-family: Roboto-Black;
    font-size: 36px;
    color: black;
    display: block;
    margin-bottom: 30px;
}

.department-card {
    width: 30%;
    height: 400px;
    padding-top: 0;
    padding-left: 0;
    background-color: var(--light);
    transition: background-color 0.3s ease-out;
    transition: box-shadow 0.3s;
    border-radius: 10px;
}

.department-card:hover {
    background-color: var( --medium);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
}

.department-card:hover h2{
    color: white;
}


.department-card h2 {
    font-family: Roboto-Bold;
    font-size: 28px;
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    background-color: var( --dark );
    color: white;
    transition: color 0.3s;
    border-radius: 10px 10px 0px 0px;
}


.department-card p {
    font-family: Roboto;
    font-size: 20px;
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    color: white;
}


.department-button {
    padding: 10px;
    margin-left: 5%;
    background-color: var( --highlight );
    font-family: Roboto-Bold;
    color: var( --dark );
}











